chore(docs): update Console URLs after organization nav refactor#2555
chore(docs): update Console URLs after organization nav refactor#2555mszekiel wants to merge 3 commits into
Conversation
The Ory Console moved organization management out from under Authentication to a top-level entry, and the detail page now uses a left-rail layout with dedicated routes per sub-section. Update the screenshot URLs accordingly. Companion to ory-corp/cloud#11899.
There was a problem hiding this comment.
Pull request overview
Updates the Kratos organizations documentation to reflect the new Ory Console organization onboarding portal route after the navigation refactor.
Changes:
- Replaces old Authentication-scoped organization edit URLs with the new top-level organization onboarding portal URLs.
- Keeps onboarding portal screenshots aligned with the current Console UI route.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
vinckr
left a comment
There was a problem hiding this comment.
Every nav refactor also needs to update this component: https://github.com/ory/docs/tree/master/src/components/ConsoleLink
Mirror the Ory Console nav refactor: Organizations is now a top-level entry with sub-routes for Overview, B2B SSO, Onboarding Portal, SCIM clients, and Identities. Update the four ConsoleLink references in the Kratos organizations guide so they render and link to the new Organizations section.
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe PR restructures console navigation by relocating the Organizations section from the Authentication subsection to a top-level project navigation area. Route definitions are updated to create a new ChangesOrganizations Navigation Restructuring
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip 💬 Introducing Slack Agent: The best way for teams to turn conversations into code.Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.
Built for teams:
One agent for your entire SDLC. Right inside Slack. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@src/components/ConsoleLink/console-nav-data.ts`:
- Around line 132-150: The nav items use dynamic route templates
(routes.project.organizations.details / b2bSso / onboardingPortal / scim /
identities) which contain unresolved [organization] params and are assigned to
Path.href: string; replace those template hrefs with concrete URLs built from
the current organization context (e.g., generate organizationsPaths or call the
route helper with (project, organization) to produce a fully-resolved string) or
render those menu entries as non-clickable until params exist; update the code
locations where routes.project.organizations.* are used to consume the resolved
path string instead of the raw template.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: 6d20dcdb-b461-454f-bc84-5668b84ddc71
⛔ Files ignored due to path filters (1)
docs/kratos/organizations/organizations.mdxis excluded by!**/*.mdx
📒 Files selected for processing (2)
src/components/ConsoleLink/console-nav-data.tssrc/components/ConsoleLink/console-routes.ts
The Organizations sub-routes (Overview, B2B SSO, Onboarding Portal, SCIM, Identities) all require an [organization] id; ConsoleLink only replaces [project] in URLs, so those entries would render broken links. Keep only the All organizations entry, which is the actual target of every ConsoleLink reference in the Kratos guide.
The Ory Console moved organization management out from under Authentication to a top-level entry, and the detail page now uses a left-rail layout with dedicated routes per sub-section. The Onboarding Portal screenshots in the kratos organizations doc point at the old
console.ory.sh/projects/<id>/authentication/organizations/<id>/editURL — this PR points them at the new/organizations/<id>/onboarding-portalroute.Companion to ory-corp/cloud#11899.
The old URL keeps working via a permanent redirect, but this update keeps the docs in sync with the live UI.
Summary by CodeRabbit